WaitUntilExists<T>(T) Method
Waits until the test object exists or the timeout elapses. This method is useful for synchronizing your test with your application.
Remarks
This overload uses the default object synchronization timeout.

C# Syntax

[Extension()]
public static bool WaitUntilExists<T>( 
   this T testObject
)
where T: ITestObject

Parameters

testObject
The test object to wait for until it exists.

Type Parameters

T
A class implementing ITestObject

Return Value

True if the test object exists before the timeout is reached; otherwise, false.